home *** CD-ROM | disk | FTP | other *** search
/ Star Festival... a Return to Japan / Star Festival... a Return to Japan.iso / pc / STARFESTIVAL / 08q.dir / 00001_sM.ls next >
Encoding:
Text File  |  1999-03-11  |  1.7 KB  |  65 lines

  1. on startMovie
  2.   global gqtcurrenttime, gqtcurrentmovie, gPcVidSprite
  3.   gPcVidSprite = 52
  4. end
  5.  
  6. on stopMovie
  7.   global gqtcurrenttime
  8.   gqtcurrenttime = 0
  9.   stopmovieqt()
  10. end
  11.  
  12. on idleOld
  13.   global gCursorReady
  14.   if gCursorReady = 1 then
  15.     cursor(200)
  16.     checkCursors()
  17.     set the locH of sprite 46 to the mouseH
  18.     set the locV of sprite 46 to the mouseV
  19.     updateStage()
  20.   end if
  21. end
  22.  
  23. on checkCursors
  24.   global gMagCursor
  25.   set the castNum of sprite 46 to the number of member "curs1"
  26.   if rollOver(4) then
  27.     set the castNum of sprite 46 to the number of member "hotCursor"
  28.   end if
  29.   if rollOver(22) then
  30.     set the castNum of sprite 46 to the number of member "hotCursor"
  31.   end if
  32.   if rollOver(27) then
  33.     set the castNum of sprite 46 to the number of member "hotCursor"
  34.   end if
  35.   repeat with i = 10 to 13
  36.     if rollOver(i) then
  37.       set the castNum of sprite 46 to the number of member "hotCursor"
  38.     end if
  39.   end repeat
  40.   if rollOver(16) then
  41.     set the castNum of sprite 46 to the number of member "hotCursor"
  42.   end if
  43.   if rollOver(18) then
  44.     set the castNum of sprite 46 to the number of member "hotCursor"
  45.   end if
  46.   if rollOver(20) then
  47.     set the castNum of sprite 46 to the number of member "hotCursor"
  48.   end if
  49.   if rollOver(22) then
  50.     set the castNum of sprite 46 to the number of member "hotCursor"
  51.   end if
  52.   repeat with i = 23 to 27
  53.     if rollOver(i) then
  54.       set the castNum of sprite 46 to the number of member "hotCursor"
  55.     end if
  56.   end repeat
  57.   if rollOver(40) then
  58.     set the castNum of sprite 46 to the number of member "nonCursor"
  59.   end if
  60.   if rollOver(41) then
  61.     set the castNum of sprite 46 to the number of member "nonCursor"
  62.     cursor(-1)
  63.   end if
  64. end
  65.